home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / tex / macros / nice20.zoo / dtou next >
Text File  |  1990-10-09  |  180b  |  12 lines

  1. #! /bin/csh
  2. # DOS_TO_UNIX text file conversion
  3. # changes $0A/$0D eol-marker to $0D
  4. foreach i ($*)
  5.   echo "Processing $i"
  6.   ex - $i <<":END:"
  7.     g/$/s///
  8.     w!
  9.     q
  10. ":END:"
  11. end
  12.